3e93ed6a906ae892018a092a2913d68760d8b5fb,src/net/java/sip/communicator/impl/configuration/ConfigurationServiceImpl.java,ConfigurationServiceImpl,reloadConfiguration,#,423
Before Change
{
this.configurationFile = null;
File file = getConfigurationFile();
// restore the file if needed
FailSafeTransaction trans = this.faService
.createFailSafeTransaction(file);
try {
trans.restoreFile();
} catch (Exception e) {
logger.error("can't restore the configuration file before loading" +
" it", e);
}
store.reloadConfiguration(file);
After Change
this.configurationFile = null;
fileExtractedProperties =
loadConfiguration(getConfigurationFile());
this.properties.putAll(fileExtractedProperties);
}